找传奇、传世资源到传世资源站!

SpringBoot整合DWR3.0.2-RELEASE独立部署示例代码

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】SpringBoot整合DWR3.0.2-RELEASE独立部署示例代码

该示例资源主要解决如下两个问题,其一就是解决SpringBoot集成DWR3.0.2-RELEASE版本,无配置文件快速简洁完成集成工作,省去dwr.xml等DWR框架初始化需要的配置文件;其二就是解决了集成后的SpringBoot项目在开发环境和外置Tomcat环境下运行正常,但是以内置Tomcat独立JAR形式运行时,DWR框架无法初始化,项目无法正常运行的问题,这块主要修改了DWR源码资源加载相关代码。示例中包含一份完整的集成示例代码及其可独立运行的JAR文件示例,还包括修改后重新打包的DWR3.0.2-RELEASE资源jar文件。

自创博文:https://blog.csdn.net/weixin_38122095/article/details/114196281?spm=1001.2014.3001.5502

【相关图片】

from clipboard
【源码结构】

.
├── SpringBoot整合DWR3.0.2-RELEASE独立部署示例代码
│   ├── SwordDwrDemo
│   │   ├── DwrDemo.iml
│   │   ├── HELP.md
│   │   ├── mvnw
│   │   ├── mvnw.cmd
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │       └── sword
│   │   │   │   │           └── dwrdemo
│   │   │   │   │               ├── DwrDemoApplication.java
│   │   │   │   │               ├── config
│   │   │   │   │               │   ├── ContextInitListener.java
│   │   │   │   │               │   ├── DwrEngineConfig.java
│   │   │   │   │               │   └── DwrXmlConfig.java
│   │   │   │   │               └── web
│   │   │   │   │                   └── DwrDemoHandler.java
│   │   │   │   └── resources
│   │   │   │       ├── application.properties
│   │   │   │       └── templates
│   │   │   │           └── index.ftl
│   │   │   └── test
│   │   │       └── java
│   │   │           └── com
│   │   │               └── sword
│   │   │                   └── dwrdemo
│   │   │                       └── dwrdemo
│   │   │                           └── DwrdemoApplicationTests.java
│   │   └── target
│   │       ├── classes
│   │       │   ├── application.properties
│   │       │   ├── com
│   │       │   │   └── sword
│   │       │   │       └── dwrdemo
│   │       │   │           ├── DwrDemoApplication.class
│   │       │   │           ├── config
│   │       │   │           │   ├── ContextInitListener.class
│   │       │   │           │   ├── DwrEngineConfig.class
│   │       │   │           │   └── DwrXmlConfig.class
│   │       │   │           └── web
│   │       │   │               └── DwrDemoHandler.class
│   │       │   └── templates
│   │       │       └── index.ftl
│   │       ├── dwr-spring-boot-demo-1.0.0-SNAPSHOT.jar
│   │       ├── dwr-spring-boot-demo-1.0.0-SNAPSHOT.jar.original
│   │       ├── generated-sources
│   │       │   └── annotations
│   │       ├── generated-test-sources
│   │       │   └── test-annotations
│   │       ├── maven-archiver
│   │       │   └── pom.properties
│   │       ├── maven-status
│   │       │   └── maven-compiler-plugin
│   │       │       ├── compile
│   │       │       │   └── default-compile
│   │       │       │       ├── createdFiles.lst
│   │       │       │       └── inputFiles.lst
│   │       │       └── testCompile
│   │       │           └── default-testCompile
│   │       │               ├── createdFiles.lst
│   │       │               └── inputFiles.lst
│   │       ├── surefire-reports
│   │       │   ├── TEST-com.sword.dwrdemo.dwrdemo.DwrdemoApplicationTests.xml
│   │       │   └── com.sword.dwrdemo.dwrdemo.DwrdemoApplicationTests.txt
│   │       └── test-classes
│   │           └── com
│   │               └── sword
│   │                   └── dwrdemo
│   │                       └── dwrdemo
│   │                           └── DwrdemoApplicationTests.class
│   ├── dwr-3.0.2-RELEASE.jar
│   └── dwr-spring-boot-demo-1.0.0-SNAPSHOT.jar
└── 5t6t网_SpringBoot整合DWR3.0.2-RELEASE独立部署示例代码.zip

43 directories, 33 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复